configuration / network / interfaces / vif[ID] / cluster

CLI REST-API

ip-address

tcp/IP address
This is a read-write object and valid values are IPv4-addresses.

Datatype-Help:
the IP address should looks like this: A.B.C.D/E
Letters A - D is a number that goes from 0 - 255.
Letter E is the subnetmask that goes from 0 - 32.
example: 192.168.0.45/16



See also:
/configuration/network/interfaces/vif[ID]/cluster
/configuration/network/interfaces/vif[ID]/cluster/enable-cluster
/configuration/network/interfaces/vif[ID]/cluster/mode
/configuration/network/interfaces/vif[ID]/cluster/netmask
/configuration/network/interfaces/vif[ID]/cluster/priority

REST-API Support:


This object is supported by the REST API:

Method: GET
URL: /api/configuration/network/interfaces/vif.*/cluster


Example using curl:
curl /api/configuration/network/interfaces/vif.*/cluster


Method: PATCH
URL: /api/configuration/network/interfaces/vif.*/cluster
Body:
{
  "ip-address": "0.0.0.0"
}

Example using curl:
curl -X PATCH /api/configuration/network/interfaces/vif.*/cluster -d
{
  "ip-address": "0.0.0.0"
}